home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / stralloc_cat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  161 b   |  10 lines

  1. #include "byte.h"
  2. #include "stralloc.h"
  3.  
  4. int stralloc_cat(sato,safrom)
  5. stralloc *sato;
  6. stralloc *safrom;
  7. {
  8.   return stralloc_catb(sato,safrom->s,safrom->len);
  9. }
  10.